home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000292_fdc@watsun.cc.columbia.edu_Tue Aug 7 16:14:42 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  62 lines

  1. Article: 12647 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Init settings
  6. Date: 7 Aug 2001 20:14:32 GMT
  7. Organization: Columbia University
  8. Lines: 45
  9. Message-ID: <9kpi78$as7$1@newsmaster.cc.columbia.edu>
  10. References: <tn0hlqg5v5p9a2@corp.supernews.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 997215272 11143 128.59.39.2 (7 Aug 2001 20:14:32 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 7 Aug 2001 20:14:32 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12647
  16.  
  17. In article <tn0hlqg5v5p9a2@corp.supernews.com>,
  18. Steve <steve@baus-systems.com> wrote:
  19. : What are my options for specifying modem settings in an ini file?
  20. : I have a Zoom external modem I would like to setup with AT commands when I
  21. : start k95.  If this is best accomplished in a global k95 init file I need to
  22. : make sure they are specific to the Zoom modem as I may be using other modems
  23. : in the future.  I have created another .ini file that I am calling when I
  24. : startup so if it is better to include it there, that is an option.
  25. Start K95 and give the following commands:
  26.  
  27.   set modem type zoom
  28.   show modem
  29.  
  30. The SET MODEM TYPE command loads the Zoom entry from the Kermit database.
  31. The SHOW MODEM command shows the commands that Kermit 95 will use with the
  32. modem.  If you want to change any of them, you can use SET MODEM COMMAND
  33. commands to do so.
  34.  
  35. If you want to customize the commands for certain kinds of modems, perhaps
  36. the most convenient way is to define a macro that selects the modem and then
  37. customizes the commands, e.g.:
  38.  
  39.   define zoom {
  40.       set modem type zoom
  41.       set modem command init ATblahblahblah\13
  42.   }
  43.  
  44. Put this definition in your K95CUSTOM.INI file and then whenever you want 
  45. to use your Zoom modem, type "zoom" instead of "set modem type zoom".
  46.  
  47. : What do I need to do to use a USB modem, set the port and the specific
  48. : settings like above?
  49. It depends on how it is defined in Windows.  As you know, a Windows modem
  50. can look like a serial port with a modem attached, or it can be a "Windows
  51. Modem" device that you refer to directly.  In the latter case you will find
  52. it in the Modems folder of the Windows Control Panel with a long name,
  53. like "Zoom Data/Fax Modem 56K".
  54.  
  55. The distinction between DOS-style COM-port-plus-modem and Windows modem
  56. devices is explained in the K95 manual.
  57.  
  58. - Frank
  59.